home *** CD-ROM | disk | FTP | other *** search
- function findTag(eItem) {
- var objATag = new Object();
- objATag = eItem.all.tags("A").item(0)
- return objATag;
- }
-
- function NavMOver(eItem){
- eItem.DefaultBgColor = eItem.style.backgroundColor;
- eItem.DefaultTxtColor = eItem.style.color;
- eItem.style.backgroundColor = "#99CCFF";
- eItem.style.cursor="hand";
- //window.status = findTag(eItem).getAttribute("HREF");
- }
-
- function NavMOut(eItem){
- eItem.style.backgroundColor = eItem.DefaultBgColor;
- findTag(eItem).style.color=eItem.DefaultTxtColor
- //window.status= "";
- }
-
- function NavMDown(eItem){
- findTag(eItem).style.color="#6699CC"
- }
-
- function NavMUp(eItem){
- top.location.href= findTag(eItem).getAttribute("HREF")//leave "top" in, so we can navigate away from framed pages.
- }